home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ctutor2 / struct1.c < prev    next >
Text File  |  1985-02-05  |  640b  |  24 lines

  1. main()
  2. {
  3.  
  4. struct {
  5.    char initial;    /* last name initial      */
  6.    int age;         /* childs age             */
  7.    int grade;       /* childs grade in school */
  8.    } boy,girl;
  9.  
  10.    boy.initial = 'R';
  11.    boy.age = 15;
  12.    boy.grade = 75;
  13.  
  14.    girl.age = boy.age - 1;  /* she is one year younger */
  15.    girl.grade = 82;
  16.    girl.initial = 'H';
  17.  
  18.    printf("%c is %d years old and got a grade of %d\n",
  19.            girl.initial, girl.age, girl.grade);
  20.  
  21.    printf("%c is %d years old and got a grade of %d\n",
  22.            boy.initial, boy.age, boy.grade);
  23. }
  24.